#include "..\CookHeader.h"
#include <Windows.h>
#include <conio.h>

int main() {
	_getch();  //  ȿ

	HWND hwnd = GetForegroundWindow();
	HDC hdc = GetDC(hwnd); // HDC hdc = GetDC(NULL);

	int cx = 1000 / 2;
	int cy = 1000 / 2;
	int r = 400;

	Ellipse(hdc, cx-r, cy-r, cx+r, cy+r);

	ReleaseDC(hwnd, hdc);	
}